home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Super Platinum 8
/
Shareware Super Platinum 8.iso
/
mac
/
PROGTOOL
/
FGL304D.ZIP;1
/
EXBAS.ARJ
/
FGDOC
/
EXAMPLES
/
BASIC
/
14-02.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1994-01-24
|
273 b
|
17 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
CONST Esc = 27
DIM KeyCode AS STRING*1
DIM AuxCode AS STRING*1
DO
FGwaitfor 9
FGintkey KeyCode, AuxCode
PRINT USING "Key = ### Aux = ###"; ASC(KeyCode), ASC(AuxCode)
LOOP WHILE KeyCode <> CHR$(Esc)
END